home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / utility / utilmisc / rqtlsusr.lha / ReqTools / RexxReqTools / Install < prev    next >
Text File  |  1994-08-16  |  2KB  |  69 lines

  1. ; Installer installation script for RexxReqTools
  2. ;$VER:Install RexxReqTools 37.4 (5.2.94)
  3.  
  4. (set @default-dest "")
  5.  
  6. (user 2)
  7.  
  8. (if (< (/ (getversion) 65536) 37)
  9.   (
  10.     (abort "You must have Kickstart 2.04 or higher installed to use RexxReqTools!")
  11.   )
  12. )
  13.  
  14. (complete 0)
  15.  
  16. (message "\nRexxReqTools installation\n\n\n"
  17.          "This script installs RexxReqTools 1.3\n"
  18.          "on your Amiga.\n\n\n\n"
  19.          "RexxReqTools © 1992-1994 Rafael D'Halleweyn\n"
  20.          "All rights reserved."
  21. )
  22.  
  23. (copylib
  24.   (prompt "\nCopying rexxreqtools.library to LIBS:...")
  25.   (help "rexxreqtools.library contains all the ARexx "
  26.         "functions to use RexxReqTools.\n"
  27.         "SEE ALSO: RexxReqTools.guide.\n\n"
  28.         @copylib-help)
  29.   (source "Libs/rexxreqtools.library")
  30.   (dest "LIBS:")
  31.   (confirm)
  32. )
  33.  
  34.  
  35. (if (exists "Libs/reqtools.library")
  36.   (
  37.     (complete 45)
  38.  
  39.     (copylib
  40.       (prompt "\nCopying reqtools.library to LIBS:...")
  41.       (help @copylib-help)
  42.       (source "Libs/reqtools.library")
  43.       (dest "LIBS:")
  44.       (confirm)
  45.     )
  46.   )
  47. )
  48.  
  49. (complete 90)
  50.  
  51. (startup
  52.   "RexxReqTools"
  53.   (prompt "\n\nAdd rexxreqtools.library to the ARexx Library List?\n\n"
  54.           "(NOTE: this will add a \"RXLIB\" command to the User-Startup)")
  55.   (help "To use RexxReqTools you have to tell ARexx about this new library. "
  56.         "You can do these with the\n"
  57.         "  RXLIB rexxreqtools.library 0 -30\n"
  58.         "command.\n"
  59.         "SEE ALSO: RexxReqTools.guide or .doc\n\n"
  60.         @startup-help)
  61.   (command "RXLIB >NIL: rexxreqtools.library 0 -30")
  62. )
  63.  
  64. (complete 100)
  65. (exit)
  66.  
  67. ; that'll keep him happy
  68. (welcome)
  69.